from small one page howto to huge articles all in one place

search text in:




Other .linuxhowtos.org sites: www.linuxhowtos.org
toolsntoys.linuxhowtos.org



Last additions:
How to make X listen on port 6000

How to make X listen on port 6000

words:

34

views:

82748

userrating:

average rating: 1.2 (52 votes) (1=very good 6=terrible)


May, 25th 2007:
April, 26th 2007:
Apr, 10th. 2007:
Druckversion . pdf icon
You are here: Misc

Gentoo udev Guide


1. What is udev?


The /dev Directory


When Linux-users talk about the hardware on their system in the vicinity of people who believe Linux is some sort of virus or brand of coffee, the use of "slash dev slash foo" will return a strange look for sure. But for the fortunate user (and that includes you) using /dev/hda1 is just a fast way of explaining that we are talking about the primary master IDE, first partition. Or aren't we?
We all know what a device file is. Some even know why device files have special numbers when we take a closer look at them when we issue ls -l in /dev. But what we always take for granted is that the primary master IDE disk is referred to as /dev/hda. You might not see it this way, but this is a flaw by design.
Think about hotpluggable devices like USB, IEEE1394, hot-swappable PCI, ... What is the first device? And for how long? What will the other devices be named when the first one disappears? How will that affect ongoing transactions? Wouldn't it be fun that a printing job is suddenly moved from your supernew laserprinter to your almost-dead matrix printer because your mom decided to pull the plug of the laserprinter which happened to be the first printer?


Enter udev. The goals of the udev project are both interesting and needed:
- Runs in userspace
- Dynamically creates/removes device files
- Provides consistent naming
- Provides a user-space API
To provide these features, udev is developed in three separate projects: namedev, libsysfs and, of course, udev.

namedev


Namedev allows you to define the device naming separately from the udev program. This allows for flexible naming policies and naming schemes developed by separate entities. This device naming subsystem provides a standard interface that udev can use.
Currently only a single naming scheme is provided by namedev; the one provided by LANANA, used by the majority of Linux systems currently and therefore very suitable for the majority of Linux users.
Namedev uses a 5-step procedure to find out the name of a given device. If the device name is found in one of the given steps, that name is used. The steps are:
- label or serial number
- bus device number
- bus topology
- statically given name
- kernel provided name

The label or serial number step checks if the device has a unique identifier. For instance USB devices have a unique USB serial number; SCSI devices have a unique UUID. If namedev finds a match between this unique number and a given configuration file, the name provided in the configuration file is used.
The bus device number step checks the device bus number. For non-hot-swappable environments this procedure is sufficient to identify a hardware device. For instance PCI bus numbers rarely change in the lifetime of a system. Again, if namedev finds a match between this position and a given configuration file, the name provided in that configuration file is used.
Likewise the bus topology is a rather static way of defining devices as long as the user doesn't switch devices. When the position of the device matches a given setting provided by the user, the accompanying name is used.
The fourth step, statically given name, is a simple string replacement. When the kernel name (the default name) matches a given replacement string, the substitute name will be used.
The final step (kernel provided name) is a catch-all: this one takes the default name provided by the kernel. In the majority of cases this is sufficient as it matches the device naming used on current Linux systems.

libsysfs


udev interacts with the kernel through the sysfs pseudo filesystem. The libsysfs project provides a common API to access the information given by the sysfs filesystem in a generic way. This allows for querying all kinds of hardware without having to make assumptions on the kind of hardware.

udev


Every time the kernel notices an update in the device structure, it calls the /sbin/hotplug program. Hotplug runs the applications linked in the /etc/hotplug.d/default directory where you will also find a symlink to the udev application. Hotplug directs the information given by the kernel to the udev application which performs the necessary actions on the /dev structure (creating or deleting device files).

2. Using udev on Gentoo


Requirements


udev is meant to be used in combination with a 2.6 kernel (like development-sources or gentoo-dev-sources). If you're using such a kernel then you just have to make sure that you have a recent sys-apps/baselayout version. That's all you need.
Code Listing 2.1: Installing udev
# emerge udev

udev will install hotplug-base as one of it's dependencies. You do not need to install hotplug unless you want your modules automatically loaded when you plug devices in. hotplug also handles the automated bringup of network devices and firmware downloading.
Code Listing 2.2: Installing optional hotplug scripts
# emerge hotplug

If you want modules loaded for devices that have been plugged in before you boot, use the coldplug package:
Code Listing 2.3: Installing the coldplug package
# emerge coldplug

Kernelwise, if you're using the default set by genkernel then you're all set. Otherwise be sure to activate the following options:
Code Listing 2.4: Required kernel options
General setup --->   
[*] Support for hot-pluggable devices

File systems --->
Pseudo filesystems --->
[*] /proc file system support
[*] Virtual memory file system support (former shm fs)

You can leave the /dev file system support (OBSOLETE) active if you wish but you have to make sure that "Automatically mount at boot" is disabled:
Code Listing 2.5: Don't automatically mount devfsd
File systems --->   
Pseudo Filesystems --->
[*] /dev file system support (OBSOLETE)
[ ] Automatically mount at boot

Configuration


If you want to use the udev-tweaks Gentoo added to make your life comfortable, then read no more. Gentoo will use udev but keep a static /dev so that you will never have any missing device nodes. The Gentoo init scripts won't run the devfsd daemon and will deactivate devfs when you boot up.

But if you are a die-hard and want to run a udev-only, no-tweaked system as is intended by the udev development (including the difficulties of missing device nodes because udev doesn't support them yet), by all means, read on :)

We'll deactivate the rules that save the device file nodes: edit the RC_DEVICE_TARBALL variable in /etc/conf.d/rc and set it to no:
Code Listing 2.6: /etc/conf.d/rc
RC_DEVICE_TARBALL="no"

If you have included devfs support in your kernel, you can deactivate it in the bootloader configuration: add gentoo=nodevfs as a kernel parameter. If you want to use devfs and deactivate udev, add gentoo=noudev as kernel parameter.

3. Known Issues


Missing device node files at boot


If you can't boot successfully because you get an error about /dev/null not found, or because the initial console is missing, the problem is that you lack some device files that must be available before /dev is mounted and handled by udev. This is common on Gentoo machines installed from old media.

If you run sys-apps/baselayout-1.8.12 or later, this problem is alleviated since the boot process should still manage to complete. However, to get rid of those annoying warnings, you should create the missing device nodes as described below.

To see which devices nodes are present before the /dev filesystem is mounted, run the following commands:
Code Listing 3.1: Listing device nodes available at boot
# mkdir test   
# mount --bind / test
# cd test/dev
# ls

The devices needed for a successful boot are /dev/null and /dev/console. If they didn't show up in the previous test, you have to create them manually. Issue the following commands in the test/dev/ directory:
Code Listing 3.2: Creating necessary device node files
# mknod -m 660 console c 5 1   
# mknod -m 660 null c 1 3

When you're finished, don't forget to unmount the test/ directory:
Code Listing 3.3: Unmounting the test/ directory
# cd ../..   
# umount test
# rmdir test

udev and nvidia


If you use the proprietary driver from nVidia and the X server fails to start on a udev-only system, then make sure you have:

the nvidia module listed in /etc/modules.autoload.d/kernel-2.6
a version of nvidia-kernel equal to or greater than media-video/nvidia-kernel-1.0.5336-r2
a version of baselayout equal to or greater than sys-apps/baselayout-1.8.12

LVM2 Names Disappear


When you use udev and LVM2 together, you might notice that your created volume groups and logical volumes have disappeared. Well, they haven't, but they are unfortunately named /dev/dm-# with # being 0, 1, ...

To fix this, edit /etc/udev/rules.d/50-udev.rules and uncomment the following line:
Code Listing 3.4: Uncomment this line from /etc/udev/rules.d/50-udev.rules
KERNEL="dm-[0-9]*",     PROGRAM="/sbin/devmap_name %M %m", NAME="%k", SYMLINK="%c"

No Consistent Naming between DevFS and udev


Even though our intention is to have a consistent naming scheme between both dynamical device management solutions, sometimes naming differences do occur. One reported clash is with a HP Smart Array 5i RAID controller (more precisely the cciss kernel module). With udev, the devices are named /dev/cciss/cXdYpZ with X, Y and Z regular numbers. With devfs, the devices are /dev/hostX/targetY/partZ or symlinked from /dev/cciss/cXdY.

If this is the case, don't forget to update your /etc/fstab and bootloader configuration files accordingly.

Other issues


If device nodes are not created when a module is loaded from /etc/modules.autoload.d/kernel-2.6 but they appear when you load the module manually with modprobe then you should try upgrading to sys-apps/baselayout-1.8.12 or later.

Support for the framebuffer devices (/dev/fb/*) comes with the kernel starting from version 2.6.6-rc2.

For kernels older than 2.6.4 you have to explicitly include support for the /dev/pts filesystem.
Code Listing 3.5: Enabling the /dev/pts filesystem
File systems --->   
Pseudo filesystems --->
[*] /dev/pts file system for Unix98 PTYs

4. Resources & Acknowledgements


The udev talk on the Linux Symposium (Ottawa, Ontario Canada - 2003) given by Greg Kroah-Hartman (IBM Corporation) provided a solid understanding on the udev application.

Decibel's UDEV Primer is an in-depth document about udev and Gentoo.

Writing udev rules by fellow Gentoo developer Daniel Drake is an excellent document to learn how to customize your udev installation.
rate this article:
current rating: average rating: 1.3 (33 votes) (1=very good 6=terrible)
Your rating:
Very good (1) Good (2) ok (3) average (4) bad (5) terrible (6)

back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2026-01-08
age - 1.3.1
Ebuild name:

app-crypt/age-1.3.1

Description

A simple, modern and secure encryption tool (and Go library)

Added to portage

2026-01-08

aseprite - 1.3.13
Ebuild name:

dev-games/aseprite-1.3.13

Description

Animated sprite editor & pixel art tool

Added to portage

2026-01-08

awscli - 1.44.14
Ebuild name:

app-admin/awscli-1.44.14

Description

Universal Command Line Environment for AWS

Added to portage

2026-01-08

boto3 - 1.42.24
Ebuild name:

dev-python/boto3-1.42.24

Description

The AWS SDK for Python

Added to portage

2026-01-08

botocore - 1.42.24
Ebuild name:

dev-python/botocore-1.42.24

Description

Low-level, data-driven core of boto 3

Added to portage

2026-01-08

celestia - 1.7.0_pre20241231-r1
Ebuild name:

sci-astronomy/celestia-1.7.0_pre20241231-r1

Description

OpenGL 3D space simulator

Added to portage

2026-01-08

closure-compiler-bin - 20260104
Ebuild name:

dev-lang/closure-compiler-bin-20260104

Description

JavaScript optimizing compiler

Added to portage

2026-01-08

cri-o - 1.34.3
Ebuild name:

app-containers/cri-o-1.34.3

Description

OCI-based implementation of Kubernetes Container Runtime Interface

Added to portage

2026-01-08

curtail - 1.14.0
Ebuild name:

media-gfx/curtail-1.14.0

Description

Image compressor, supporting PNG, JPEG and WebP

Added to portage

2026-01-08

dist-kernel - 6.12.64
Ebuild name:

virtual/dist-kernel-6.12.64

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-01-08

dist-kernel - 6.18.4
Ebuild name:

virtual/dist-kernel-6.18.4

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-01-08

django-otp - 1.7.0
Ebuild name:

dev-python/django-otp-1.7.0

Description

Django framework adding two-factor authentication using one-time passwo

Added to portage

2026-01-08

dovecot - 2.4.2-r1
Ebuild name:

net-mail/dovecot-2.4.2-r1

Description

An IMAP and POP3 server written with security primarily in mind

Added to portage

2026-01-08

drumstick - 2.11.0
Ebuild name:

media-sound/drumstick-2.11.0

Description

Qt/C++ wrapper for ALSA sequencer

Added to portage

2026-01-08

egl-wayland2 - 1.0.1_pre20251231
Ebuild name:

gui-libs/egl-wayland2-1.0.1_pre20251231

Description

NVIDIA wayland EGL external platform library, version 2

Added to portage

2026-01-08

fennel - 1.6.1
Ebuild name:

dev-lang/fennel-1.6.1

Description

Lisp-like language that compiles to Lua

Added to portage

2026-01-08

gentoo-kernel - 6.12.64
Ebuild name:

sys-kernel/gentoo-kernel-6.12.64

Description

Linux kernel built with Gentoo patches

Added to portage

2026-01-08

gentoo-kernel - 6.18.4
Ebuild name:

sys-kernel/gentoo-kernel-6.18.4

Description

Linux kernel built with Gentoo patches

Added to portage

2026-01-08

gentoo-kernel-bin - 6.12.64
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.12.64

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-01-08

gentoo-kernel-bin - 6.18.4
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.18.4

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-01-08

gleam - 1.14.0
Ebuild name:

dev-lang/gleam-1.14.0

Description

A friendly language for building type-safe, scalable systems

Added to portage

2026-01-08

haruna - 1.7.0
Ebuild name:

media-video/haruna-1.7.0

Description

Video player built with Qt/QML and libmpv

Added to portage

2026-01-08

importmap-rails - 2.2.3
Ebuild name:

dev-ruby/importmap-rails-2.2.3

Description

Use ESM with importmap to manage JavaScript in Rails

Added to portage

2026-01-08

jsonschema - 4.26.0
Ebuild name:

dev-python/jsonschema-4.26.0

Description

An implementation of JSON-Schema validation for Python

Added to portage

2026-01-08

just - 1.46.0
Ebuild name:

dev-build/just-1.46.0

Description

Just a command runner (with syntax inspired by 'make')

Added to portage

2026-01-08

kirigami-addons - 1.11.0
Ebuild name:

dev-libs/kirigami-addons-1.11.0

Description

Visual end user components for Kirigami-based applications

Added to portage

2026-01-08

lfe - 2.2.0-r1
Ebuild name:

dev-lang/lfe-2.2.0-r1

Description

Lisp-flavoured Erlang, a lisp syntax front-end to the Erlang compiler

Added to portage

2026-01-08

limesuite - 23.11.0_p20250714
Ebuild name:

net-wireless/limesuite-23.11.0_p20250714

Description

Driver and GUI for LMS7002M-based SDR platforms

Added to portage

2026-01-08

linode-metadata - 0.3.3
Ebuild name:

dev-python/linode-metadata-0.3.3

Description

Python bindings for the Linode Metadata Service

Added to portage

2026-01-08

package-build - 4.0.0
Ebuild name:

app-emacs/package-build-4.0.0

Description

Tools for assembling a package archive

Added to portage

2026-01-08

package-lint - 0.26
Ebuild name:

app-emacs/package-lint-0.26

Description

Linting library for Emacs Lisp package metadata

Added to portage

2026-01-08

peewee - 3.19.0
Ebuild name:

dev-python/peewee-3.19.0

Description

Small Python ORM

Added to portage

2026-01-08

picard - 3.0_pre20260107
Ebuild name:

media-sound/picard-3.0_pre20260107

Description

Cross-platform music tagger

Added to portage

2026-01-08

plotly - 6.5.1
Ebuild name:

dev-python/plotly-6.5.1

Description

Browser-based graphing library for Python

Added to portage

2026-01-08

poppler - 26.01.0
Ebuild name:

app-text/poppler-26.01.0

Description

PDF rendering library based on the xpdf-3.0 code base

Added to portage

2026-01-08

pram - 16
Ebuild name:

app-portage/pram-16

Description

Tool to ease merging Pull Requests and git patches

Added to portage

2026-01-08

pycxx - 7.2.0
Ebuild name:

dev-python/pycxx-7.2.0

Description

Set of facilities to extend Python with C++

Added to portage

2026-01-08

pymongo - 4.16.0
Ebuild name:

dev-python/pymongo-4.16.0

Description

Python driver for MongoDB

Added to portage

2026-01-08

trimesh - 4.11.0
Ebuild name:

dev-python/trimesh-4.11.0

Description

Python library for loading and using triangular meshes

Added to portage

2026-01-08

upmpdcli - 1.9.10
Ebuild name:

media-sound/upmpdcli-1.9.10

Description

UPnP Media Renderer front-end for MPD, the Music Player Daemon

Added to portage

2026-01-08

urllib3 - 2.6.3
Ebuild name:

dev-python/urllib3-2.6.3

Description

HTTP library with thread-safe connection pooling, file post, and more

Added to portage

2026-01-08

utidylib - 1.0.0
Ebuild name:

dev-python/utidylib-1.0.0

Description

TidyLib Python wrapper

Added to portage

2026-01-08

vanilla-kernel - 6.12.64
Ebuild name:

sys-kernel/vanilla-kernel-6.12.64

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-01-08

vanilla-kernel - 6.18.4
Ebuild name:

sys-kernel/vanilla-kernel-6.18.4

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-01-08

virtualenv - 20.36.0
Ebuild name:

dev-python/virtualenv-20.36.0

Description

Virtual Python Environment builder

Added to portage

2026-01-08

xvfbwrapper - 0.2.18
Ebuild name:

dev-python/xvfbwrapper-0.2.18

Description

Python wrapper for running a display inside X virtual framebuffer

Added to portage

2026-01-08

zstd-ruby - 2.0.5
Ebuild name:

dev-ruby/zstd-ruby-2.0.5

Description

Ruby binding for zstd (Zstandard - Fast real-time compression algorithm).

Added to portage

2026-01-08

2026-01-07
anyio - 4.12.1
Ebuild name:

dev-python/anyio-4.12.1

Description

Compatibility layer for multiple asynchronous event loop implementations

Added to portage

2026-01-07

avidemux - 2.8.1_p20251019-r1
Ebuild name:

media-video/avidemux-2.8.1_p20251019-r1

Description

Video editor designed for simple cutting, filtering and enc

Added to portage

2026-01-07

awscli - 1.44.13
Ebuild name:

app-admin/awscli-1.44.13

Description

Universal Command Line Environment for AWS

Added to portage

2026-01-07

boto3 - 1.42.23
Ebuild name:

dev-python/boto3-1.42.23

Description

The AWS SDK for Python

Added to portage

2026-01-07

botocore - 1.42.23
Ebuild name:

dev-python/botocore-1.42.23

Description

Low-level, data-driven core of boto 3

Added to portage

2026-01-07

claude-code - 2.0.77
Ebuild name:

dev-util/claude-code-2.0.77

Description

Claude Code - an agentic coding tool by Anthropic

Added to portage

2026-01-07

conan - 2.24.0
Ebuild name:

dev-util/conan-2.24.0

Description

Distributed C/C++ package manager

Added to portage

2026-01-07

cryfs - 1.0.3
Ebuild name:

sys-fs/cryfs-1.0.3

Description

Encrypted FUSE filesystem that conceals metadata

Added to portage

2026-01-07

derper - 1.92.4
Ebuild name:

net-vpn/derper-1.92.4

Description

DERP server for tailscale network

Added to portage

2026-01-07

django - 5.2.10
Ebuild name:

dev-python/django-5.2.10

Description

High-level Python web framework

Added to portage

2026-01-07

django - 6.0.1
Ebuild name:

dev-python/django-6.0.1

Description

High-level Python web framework

Added to portage

2026-01-07

fish - 4.3.3
Ebuild name:

app-shells/fish-4.3.3

Description

Friendly Interactive SHell

Added to portage

2026-01-07

flog - 4.9.4
Ebuild name:

dev-ruby/flog-4.9.4

Description

Flog reports the most tortured code in an easy to read pain report

Added to portage

2026-01-07

genkernel - 4.3.17-r3
Ebuild name:

sys-kernel/genkernel-4.3.17-r3

Description

Gentoo automatic kernel building scripts

Added to portage

2026-01-07

google-auth - 2.47.0
Ebuild name:

dev-python/google-auth-2.47.0

Description

Google Authentication Library

Added to portage

2026-01-07

hackrf-tools - 2026.01.1
Ebuild name:

net-wireless/hackrf-tools-2026.01.1

Description

tools for communicating with HackRF SDR platform

Added to portage

2026-01-07

hcloud - 1.59.0
Ebuild name:

app-admin/hcloud-1.59.0

Description

A command-line interface for Hetzner Cloud

Added to portage

2026-01-07

hypothesis - 6.150.0
Ebuild name:

dev-python/hypothesis-6.150.0

Description

A library for property based testing

Added to portage

2026-01-07

icu - 78.1
Ebuild name:

dev-libs/icu-78.1

Description

International Components for Unicode

Added to portage

2026-01-07

jdk - 27
Ebuild name:

virtual/jdk-27

Description

Virtual for Java Development Kit (JDK)

Added to portage

2026-01-07

jre - 27
Ebuild name:

virtual/jre-27

Description

Virtual for Java Runtime Environment (JRE)

Added to portage

2026-01-07

kraft - 2.0.0
Ebuild name:

app-office/kraft-2.0.0

Description

Quotes and invoices manager for small enterprises

Added to portage

2026-01-07

kube-apiserver - 1.33.7
Ebuild name:

sys-cluster/kube-apiserver-1.33.7

Description

Kubernetes API server

Added to portage

2026-01-07

kube-controller-manager - 1.33.7
Ebuild name:

sys-cluster/kube-controller-manager-1.33.7

Description

Kubernetes Controller Manager

Added to portage

2026-01-07

kube-proxy - 1.33.7
Ebuild name:

sys-cluster/kube-proxy-1.33.7

Description

Kubernetes Proxy service

Added to portage

2026-01-07

kube-scheduler - 1.33.7
Ebuild name:

sys-cluster/kube-scheduler-1.33.7

Description

Kubernetes Scheduler

Added to portage

2026-01-07

kubeadm - 1.33.7
Ebuild name:

sys-cluster/kubeadm-1.33.7

Description

CLI to Easily bootstrap a secure Kubernetes cluster

Added to portage

2026-01-07

kubectl - 1.33.7
Ebuild name:

sys-cluster/kubectl-1.33.7

Description

CLI to run commands against Kubernetes clusters

Added to portage

2026-01-07

kubelet - 1.33.7
Ebuild name:

sys-cluster/kubelet-1.33.7

Description

Kubernetes Node Agent

Added to portage

2026-01-07

ldoc - 1.5.0
Ebuild name:

dev-lua/ldoc-1.5.0

Description

LuaDoc-compatible documentation generation system

Added to portage

2026-01-07

libhackrf - 2026.01.1
Ebuild name:

net-libs/libhackrf-2026.01.1

Description

library for communicating with HackRF SDR platform

Added to portage

2026-01-07

libofx - 0.10.9-r1
Ebuild name:

dev-libs/libofx-0.10.9-r1

Description

Library to support the Open Financial eXchange XML format

Added to portage

2026-01-07

libxdg-basedir - 1.2.3-r1
Ebuild name:

dev-libs/libxdg-basedir-1.2.3-r1

Description

Small library to access XDG Base Directories Specification paths

Added to portage

2026-01-07

lidarr-bin - 3.1.2.4902
Ebuild name:

www-apps/lidarr-bin-3.1.2.4902

Description

Looks and smells like Sonarr but made for music

Added to portage

2026-01-07

micawber - 0.6.2
Ebuild name:

dev-python/micawber-0.6.2

Description

A small library for extracting rich content from urls

Added to portage

2026-01-07

narwhals - 2.15.0
Ebuild name:

dev-python/narwhals-2.15.0

Description

Extremely lightweight compatibility layer between dataframe libraries

Added to portage

2026-01-07

openjdk - 27_alpha3
Ebuild name:

dev-java/openjdk-27_alpha3

Description

Open source implementation of the Java programming language

Added to portage

2026-01-07

openjdk-bin - 26_beta29
Ebuild name:

dev-java/openjdk-bin-26_beta29

Description

Prebuilt Java JDK binaries provided by Eclipse Temurin

Added to portage

2026-01-07

openjdk-bin - 27_alpha3
Ebuild name:

dev-java/openjdk-bin-27_alpha3

Description

Prebuilt Java JDK binaries provided by Eclipse Temurin

Added to portage

2026-01-07

package-build - 4.0.0
Ebuild name:

app-emacs/package-build-4.0.0

Description

Tools for assembling a package archive

Added to portage

2026-01-07

pathspec - 1.0.1
Ebuild name:

dev-python/pathspec-1.0.1

Description

Utility library for gitignore style pattern matching of file paths

Added to portage

2026-01-07

portage - 3.0.75
Ebuild name:

sys-apps/portage-3.0.75

Description

The package management and distribution system for Gentoo

Added to portage

2026-01-07

prowlarr-bin - 2.3.2.5245
Ebuild name:

www-apps/prowlarr-bin-2.3.2.5245

Description

An indexer manager/proxy to integrate with your various PVR apps

Added to portage

2026-01-07

py-spy - 0.4.1
Ebuild name:

dev-util/py-spy-0.4.1

Description

Sampling profiler for Python programs

Added to portage

2026-01-07

pyfuse3 - 3.4.2
Ebuild name:

dev-python/pyfuse3-3.4.2

Description

Python 3 bindings for libfuse 3 with asynchronous API

Added to portage

2026-01-07

pytest-golden - 1.0.1
Ebuild name:

dev-python/pytest-golden-1.0.1

Description

Plugin for pytest that offloads expected outputs to data files

Added to portage

2026-01-07

radarr-bin - 6.1.1.10317
Ebuild name:

www-apps/radarr-bin-6.1.1.10317

Description

A fork of Sonarr to work with movies a la Couchpotato

Added to portage

2026-01-07

rpm - 6.0.1
Ebuild name:

app-arch/rpm-6.0.1

Description

The RPM Package Manager

Added to portage

2026-01-07

sbctl - 0.16
Ebuild name:

app-crypt/sbctl-0.16

Description

Secure Boot key manager

Added to portage

2026-01-07

strscan - 3.1.7
Ebuild name:

dev-ruby/strscan-3.1.7

Description

Provides lexical scanning operations on a String

Added to portage

2026-01-07

tarlz - 0.29
Ebuild name:

app-arch/tarlz-0.29

Description

A parallel archiver combining tar and lzip

Added to portage

2026-01-07

tayga - 0.9.6
Ebuild name:

net-proxy/tayga-0.9.6

Description

Out-of-kernel stateless NAT64 implementation based on TUN

Added to portage

2026-01-07

thor - 1.5.0
Ebuild name:

dev-ruby/thor-1.5.0

Description

Simple and efficient tool for building self-documenting command line utilities

Added to portage

2026-01-07

uv - 0.9.22
Ebuild name:

dev-python/uv-0.9.22

Description

A Python package installer and resolver, written in Rust

Added to portage

2026-01-07

uv-build - 0.9.22
Ebuild name:

dev-python/uv-build-0.9.22

Description

PEP517 uv build backend

Added to portage

2026-01-07

wget2 - 2.2.1
Ebuild name:

net-misc/wget2-2.2.1

Description

GNU Wget2 is a file and recursive website downloader

Added to portage

2026-01-07

xmlschema - 4.3.0
Ebuild name:

dev-python/xmlschema-4.3.0

Description

An XML Schema validator and decoder

Added to portage

2026-01-07

xvfbwrapper - 0.2.17
Ebuild name:

dev-python/xvfbwrapper-0.2.17

Description

Python wrapper for running a display inside X virtual framebuffer

Added to portage

2026-01-07

rdf newsfeed | rss newsfeed | Atom newsfeed
Copyright 2004-2025 Sascha Nitsch Unternehmensberatung GmbH
- Copyright and legal notices -
Time to create this page: 108.2 ms